﻿/* 基础样式，重置浏览器一些属性 */

*, *::before, *::after {
	-webkit-box-sizing: inherit;
	box-sizing: border-box
}

/**
  * 在用户调整窗口大小时，字体大小做相应调整，避免整体页面因为文字的大小而变形 
  */
html {
	font-size: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	
}



/**
  *清除浏览器的边缘
  */
body {
	margin: 0;
	
	background-color: #0099FF;
	background-image: url(../images/beijing.png);
	background-repeat: repeat-y;
}


/**
  *解决IE下的显示
  */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block
}

audio, canvas, progress, video {
	display: inline-block;
}
progress {
	vertical-align: baseline;
}
/**
  *清理ol,ul,dl默认样式
  */
ol,ul,dl{
	margin:0;
	padding:0;
	list-style: outside none none;
}

/**
  *清除链接的默认样式
  */
a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
	text-decoration:none;
	color:#333;
}
/**
  *删除链接点击时候的默认虚线框
  */
a:active, a:hover {
	outline-width: 0;
	color:#ec2d2d
}
b, strong {
	font-weight: inherit;
}
h1, h2, h3, h4, h5, h6,p {
	margin: 0;
	padding: 0;
	font-weight: 400;
}

label {
    display: inline-block;
    font-weight:inherit;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
img {
	border-style: none;
}
svg:not(:root) {
	overflow: hidden;
}
code, kbd, pre, samp {
	font-family: monospace, monospace;
	font-size: 1em
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	color: inherit;
	display: table;
	max-width: 100%;
	border: 0;
	padding: 0;
	white-space: normal;
}
hr {
	display: block;
	padding: 0;
	border: 0;
	height: 0;
	border-top: 1px solid #eee;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
button, input, optgroup, select, textarea {
	font: inherit;
	margin: 0;
}
optgroup {
	font-weight: bold;
}
button, input {
	overflow: visible;
}
button, select {
	text-transform: none;
}
button, html [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
	cursor: pointer
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
button[disabled], html input[disabled] {
	cursor: default
}
input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance:none
}
textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical
}
input[type=checkbox], input[type=radio] {
	cursor: pointer;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
td, th {
	padding: 0
}

ol,ul,dl,dt,dd{
	margin:0;
	padding:0;
	list-style: outside none none;
}

em,i{
	font-style:normal;
}


html {
	font-size: 10px;
	-webkit-tap-highlight-color: rgba(0,0,0,0)
}
body {
	position: relative;
	background: #fff;
	font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	font-size: 12px
}
body, button, input, select, textarea {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "liga", "kern"
}

/*功能区*/

/**
  * 清理浮动层 
  */
.f-cb {
	zoom: 1;
}
.f-cb:before, .f-cb:after {
	content: " ";
	display: table;
}
.f-cb:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.f-fl {
	float: left;
}
.f-fr {
	float: right;
}
.f-fr a{
	color: #999;
}


/**
  * 顶部左侧三角
  */
.f-angle::before {
    border-bottom: 7px solid rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: inline-block;
    left: 9px;
    position: absolute;
    top: -7px;
}
.f-angle::after {
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: "";
    display: inline-block;
    left: 10px;
    position: absolute;
    top: -6px;
}

/**
  * 顶部右侧三角
  */
.f-angle-tr::before {
    border-bottom: 7px solid rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: inline-block;
    right: 9px;
    position: absolute;
    top: -7px;
}
.f-angle-tr::after {
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: "";
    display: inline-block;
    right: 10px;
    position: absolute;
    top: -6px;
}

/**
  * 效果
  */
.f-shadow{
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.f-radius-3{
	border-radius:3px;
}

/**
  * 偏移量
  */
.f-ml10{
	margin-left:10px !important;
}
.f-ml20{
	margin-left:20px !important;
}
.f-mr10{
	margin-right:10px !important;
}
.f-mb10{
	margin-bottom:10px;
}


/**
  * 高度
  */
.f-h10{
	height:10px;
}
.f-h15{
	height:15px;
}
.f-h20{
	height:20px;
}

.f-w940{
	width:940px;
}
.f-w200{
	width:200px;
}
.f-w220{
	width:220px;
}
.f-w230{
	width:230px;
}
.f-w550{
	width:550px;
}

/**
  * 字体颜色
  */
.f-fc-999{
	color:#999;
}
.f-fc-ccc{
	color:#ccc;
}
.f-fc-fff{
	color:#fff;
}

.f-fc-666{
	color:#666;
}
.f-fc-333{
	color:#333;
}
.f-fc-bule{
	color:#09F
}
.f-fc-red{
	color:#EC2D2D !important
}

/**
  * 字体粗细
  */

.f-string{
	font-weight:bold;
}


/**
  * 文字大小
  */
.f-fs-10 {
	font-size: 10px;
}
.f-fs-12 {
	font-size: 12px;
}
.f-fs-14 {
	font-size: 14px;
}
.f-fs-16 {
	font-size: 16px;
}
.f-fs-18 {
	font-size: 18px;
}
.f-fs-20 {
	font-size: 20px;
}
.f-fs-22 {
	font-size: 22px;
}
.f-fs-24 {
	font-size: 24px;
}
.f-fs-26 {
	font-size: 26px;
}
.f-fs-30 {
	font-size: 30px;
}


.u-sepr {
    color: #999;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    margin: 0 10px;
    padding: 0;
}
.m-panel{
	width:1100px;
	position:relative;
	margin:0 auto;
}

/**
  * 分页
  */
.m-pager{
	padding:20px 0 0;
	text-align:center
}
.m-pager a{
	display:inline-block;
	margin: 0 0 0 5px;
    padding: 0 9px;
	line-height:22px;
	border:1px solid #EFEFEF;
}

.m-pager .page-num-current{
	color:#fff;
	background:#32b5cb;
	border-color:#32b5cb;
}


/**
  * 表单元件
  */
.u-ipt {
	background-color: #fff;
	background-image: none;
	border: 1px solid #CCC;
	color: inherit;
	display: inline-block;
	font-size: 12px;
	padding: 8px 12px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	width: 100%;
	vertical-align: middle;
}
.u-ipt-bg{
	font-size:14px;
	padding:12px;
}

.u-ipt:hover {
	color: #555;
	border-color: #727272;
}
.u-ipt:focus {
	border-color: #66afe9;
	color: #333;
	outline: 0 none;
}
.u-ipt-error {
	border: 1px solid #d21313;
	color: #d21313
}

.u-btn {
	-moz-user-select: none;
	background:#F9F9F9;
	border: 1px solid #DFDFDF;
	cursor: pointer;
	display: inline-block;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.42857;
	margin-bottom: 0;
	padding: 9px 12px;
	color:#333;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	transition: all 0.15s ease-in-out 0s;
}
.u-btn .icon{
	padding:0 2px;
}
.u-btn .txt{
	padding:0 2px;
}

.u-btn:hover {
    color: #333;
    text-decoration: none;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.10) inset;
}
.u-btn-white {
	background: #FFF;
	border: 1px solid #e5e6e7;
}
.u-btn-white:hover{
	border: 1px solid #d2d2d2;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
}
.u-btn-primary{
	background:#32b5cb;
	color:#FFF;
	border: 1px solid #32b5cb;
}
.u-btn-primary:hover{
    border: 1px solid #3dafc2;
	background:#3dafc2 ;
	color:#FFF;
	z-index:2
}
.u-btn-red{
	background:#ec2d2d;
	color:#FFF;
	border: 1px solid #ec2d2d;
}
.u-btn-red:hover{
    border: 1px solid #f66060 ;
	background:#f66060 ;
	color:#FFF;
	z-index:2
}

.u-btn-orange{
	background:#FFAC4A;
	color:#FFF;
	border: 1px solid #FFAC4A;
}
.u-btn-orange:hover{
    border: 1px solid #FF7F00 ;
	background:#FF7F00 ;
	color:#FFF;
	z-index:2
}

.u-btn-gray,.u-btn-gray:hover{
	background:#f9f9f9;
	border:1px solid #EFEFEF;
	color:#999
}



.u-sel {
	background-color: #fff;
	background-image: none;
	border: 1px solid #e5e6e7;
	color: inherit;
	display: inline-block;
	font-size: 12px;
	padding: 6px 11px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	width: 100%;
	vertical-align: middle;
	text-transform:capitalize;
}
.u-sel optgroup{
	background:#EFEFEF;
	color:#999;
	font-weight:normal;
	padding:2px 0;
}
.u-sel option{
	text-transform:capitalize;
	padding:2px 11px;
}

.u-sel:hover {
	color: #555;
	border-color: #727272;
}
.u-sel:focus {
	border-color: #66afe9;
	color: #333;
	outline: 0 none;
}

.u-chk,.u-rdo {
	cursor: pointer;
	display: inline-block;
	line-height: 20px;
	font-weight: 400;
	padding-left: 18px;
	vertical-align: middle;
	word-wrap: break-word;
	margin-right: 12px;
}
.u-chk input[type="checkbox"],.u-rdo input[type="radio"] {
	float: left;
	margin: 3px 0 0 -18px;
	line-height: normal;
	outline: 0 none;
	box-sizing: border-box;
	cursor: pointer;
	padding: 0;
}

.u-btn[disabled], fieldset[disabled] .u-btn, .u-ipt[disabled], fieldset[disabled] .u-ipt,.u-sel[disabled], fieldset[disabled] .u-sel {
	box-shadow: none;
	cursor: not-allowed;
	pointer-events: none;
	background:#F9F9F9;
	border:1px solid #dfdfdf;
	color:#666
}

.u-btn[readonly], fieldset[readonly] .u-btn, .u-ipt[readonly], fieldset[readonly] .u-ipt,.u-sel[readonly], fieldset[readonly] .u-sel {
	box-shadow: none;
	cursor: not-allowed;
	pointer-events: none;
	border:1px solid #dfdfdf;
	color:#666
}

#toTop{
	text-align: center;
	font-size: 20px;
	line-height: 1.1;
	background-color: #0099FF;
	color: white;
}
